7d54b4e588eb696a0448bee7028d11fb82061986,src/main/java/mnm/mods/tabbychat/gui/TextBox.java,TextBox,updateComponent,#,156
Before Change
// int newY = getBounds().y + getBounds().height - newHeight;
this.setSize(getMinimumSize().width, newHeight);
Color color = new Color(getParent().getBackColor());
Color bkg = new Color(color.getRed(), color.getGreen(), color.getBlue(),
color.getAlpha() / 4 * 3);
this.setBackColor(bkg.getColor());
}
After Change
// int newY = getBounds().y + getBounds().height - newHeight;
this.setSize(getMinimumSize().width, newHeight);
Color color = Color.of(getParent().getBackColor());
Color bkg = Color.of(color.getRed(), color.getGreen(), color.getBlue(), color.getAlpha() / 4 * 3);
this.setBackColor(bkg.getColor());
}